Skip to main content

OnGrab

Do things when grabbing and ungrabbing an item.

Example

local table = {}

function table:OnGrab(a, g)
if (g) then
print("grab");
else
print("ungrab");
end
end

return Class(nil,nil,table)

User Variables

No user variables.

FAQ

Where do I add this script?

OnGrab is a function that can be called when adding a luascript to the InteractTriggerX component.

Any way to see which hand grabbed the item?

Yes, you can call a.attachedHand:GetHandIndex() to get the hand index of the item. 0 = right 1 = left